home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter16 / MyNativeClass.java < prev    next >
Text File  |  1995-12-31  |  250b  |  14 lines

  1. /* Simple class to illustrate native methods */
  2. public class MyNativeClass {
  3.  
  4. private int x;
  5. private int y;
  6.  
  7. public int returnx() { return x; }
  8. public int returny() { return y; }
  9.  
  10. native void setx(int myx);
  11. native void sety(int myy);
  12. }
  13.  
  14.